home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 176-200 / 183 / mklib / edlib / iscsymf.c < prev    next >
C/C++ Source or Header  |  1995-03-13  |  310b  |  13 lines

  1. /* edlib  version 1.0 of 04/08/88 */
  2. /*
  3.     iscsymf is included here because Manx for some reason does not have
  4.     it in ctype.h. tells whether or not the given character may be the
  5.     first character of a valid C symbol
  6. */
  7. #include <ctype.h>
  8. int iscsymf(c)
  9. char c;
  10. {
  11.     return( isalpha(c) || c == '_' );
  12. }
  13.